From: Debian Science Maintainers Date: Fri, 3 Jul 2026 21:13:01 +0000 (+0100) Subject: Ignore a non-converging test X-Git-Tag: archive/raspbian/0.14.6+dfsg-3+rpi1^2~3 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=56d52d2e9062a8518f3b3ac49bb722861ca6570a;p=statsmodels.git Ignore a non-converging test (it currently does warn about possible non-convergence and it would be better to check that it does so) Author: Rebecca N. Palmer Bug-Debian: https://bugs.debian.org/1079789 Forwarded: no Gbp-Pq: Name 1079789_ignore_arm64_nonconvergence.patch --- diff --git a/statsmodels/discrete/tests/test_count_model.py b/statsmodels/discrete/tests/test_count_model.py index 424a633..d495944 100644 --- a/statsmodels/discrete/tests/test_count_model.py +++ b/statsmodels/discrete/tests/test_count_model.py @@ -1,4 +1,5 @@ from statsmodels.compat.platform import PLATFORM_LINUX32 +import platform import numpy as np from numpy.testing import ( @@ -109,7 +110,7 @@ class TestZeroInflatedModel_probit(CheckGeneric): res2 = RandHIE.zero_inflated_poisson_probit cls.res2 = res2 - @pytest.mark.skipif(PLATFORM_LINUX32, reason="Fails on 32-bit Linux") + @pytest.mark.skipif(PLATFORM_LINUX32 or platform.uname()[4].startswith('aarch'), strict=False, reason="convergence issues, https://bugs.debian.org/1079789") def test_fit_regularized(self): super().test_fit_regularized()